Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/025-sticky navigation

style.css cody/solygambas/html-css-javascript-projects/025-sticky navigation/style.css
141 Views
0 Comments
@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

index.html cody/solygambas/html-css-javascript-projects/025-sticky navigation/index.html
336 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Sticky Navigation</title>
</head>
script.js cody/solygambas/html-css-javascript-projects/025-sticky navigation/script.js
211 Views
0 Comments
const nav = document.querySelector(".nav");

const fixNav = () => {
if (window.scrollY > nav.offsetHeight + 150) nav.classList.add("active");
else nav.classList.remove("active");
};

window.addEventListener("scroll", fixNav);